home *** CD-ROM | disk | FTP | other *** search
- /*
- * interface file to prep file reader writer
- * by Aaron Wohl (aw0g+@andrew.cmu.edu) jul 1990
- * Carnegie-Mellon University
- * Special Projects
- * Pittsburgh, PA 15213-3890
- * (412)-268-5032
- */
-
- #define PREP_NAME "\pMailCheck Prep"
- #define PREP_RES_NUM (1234)
-
- void mmc_init_state(mmc_state_pt s);
- void mmc_invent_state(mmc_state_pt s);
-
- struct sound_res_state_R {
- short prev_res;
- short sound_res;
- };
- typedef struct sound_res_state_R sound_res_state,*sound_res_state_pt;
-
- sound_res_state mmc_use_sound_res(void);
- void mmc_close_sound_res(sound_res_state sstate);
-
- int mmc_read_prep(mmc_state_pt s);
- int mmc_write_prep(mmc_state_pt s);
- int mmc_dont_like_prep(mmc_state_pt s);
- /*
- * note set_drvr_state returns the new updated state
- */
- int mmc_get_drvr_state(int refnum,mmc_state_pt s);
- int mmc_set_drvr_state_sound_no(int refnum,mmc_state_pt s,int iokind);
- int mmc_set_drvr_state_sound_yes(int refnum,mmc_state_pt s,int iokind);
-
-